home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / MATHS / RLAB / RLAB125.ZIP / !RLaB / help_ai / inv < prev    next >
Text File  |  1994-02-21  |  431b  |  17 lines

  1. inv:
  2.  
  3. Syntax:    inv ( A )
  4.  
  5. Description:
  6.  
  7.     Inv computes the matrix-inverse of a square matrix. If the
  8.     matrix is near singular, inv() will print a warning message,
  9.     and stop. The near singular condition is determined by
  10.     comparing the estimated matrix condition number (from rcond())
  11.     with the machines double precision epsilon.
  12.  
  13.     Inv uses the LAPACK subroutines DGETRF, DGETRI, or ZGETRF,
  14.     and ZGETRI.
  15.  
  16. See Also: lu, solve, DIVISION
  17.